
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
terraformer-arcgis-parser
Advanced tools
Two way conversion between GeoJSON and ArcGIS Geometry. Part of the Terraformer project.
$ npm install terraformer-arcgis-parser
In the browser, Terraformer is required.
For full documentation check out the offical website.
var ArcGIS = require('terraformer-arcgis-parser');
// parse ArcGIS JSON, convert it to a Terraformer.Primitive (GeoJSON)
var primitive = ArcGIS.parse({
'x':-122.6764,
'y':45.5165,
'spatialReference': {
'wkid': 4326
}
});
// take a Terraformer.Primitive or GeoJSON and convert it back to ArcGIS JSON
var point = ArcGIS.convert({
'type': "Point",
'coordinates': [45.5165, -122.6764]
});
<!-- Load the main Terraformer library -->
<script src="https://unpkg.com/terraformer/terraformer.js" type="text/javascript"></script>
<!-- Load the ArcGIS Parser -->
<script src="https://unpkg.com/terraformer-arcgis-parser/terraformer-arcgis-parser.js" type="text/javascript"></script>
<!-- Use it! -->
<script>
var primitive = Terraformer.ArcGIS.parse({
'x':-122.6764,
'y':45.5165,
'spatialReference': {
'wkid': 4326
}
});
// take a Terraformer.Primitive or GeoJSON and convert it to ArcGIS JSON
var point = Terraformer.ArcGIS.convert({
'type': "Point",
'coordinates': [45.5165, -122.6764]
});
</script>
import arcgis = require("terraformer-arcgis-parser");
Find a bug or want to request a new feature? Please let us know by submitting an issue.
Esri welcomes contributions from anyone and everyone. Please see our guidelines for contributing.
Copyright © 2013-2018 Esri
A copy of the license is available in the repository's LICENSE file.
FAQs
ArcGIS JSON format parser and converter
The npm package terraformer-arcgis-parser receives a total of 9,651 weekly downloads. As such, terraformer-arcgis-parser popularity was classified as popular.
We found that terraformer-arcgis-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.